home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / chrome / calendar.jar / content / calendar / sun-calendar-event-dialog-reminder.xul < prev    next >
Extensible Markup Language  |  2007-10-29  |  6KB  |  137 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is Sun Microsystems code.
  16.    -
  17.    - The Initial Developer of the Original Code is Sun Microsystems.
  18.    - Portions created by the Initial Developer are Copyright (C) 2006
  19.    - the Initial Developer. All Rights Reserved.
  20.    -
  21.    - Contributor(s):
  22.    -   Michael Buettner <michael.buettner@sun.com>
  23.    -
  24.    - Alternatively, the contents of this file may be used under the terms of
  25.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  26.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.    - in which case the provisions of the GPL or the LGPL are applicable instead
  28.    - of those above. If you wish to allow use of your version of this file only
  29.    - under the terms of either the GPL or the LGPL, and not to allow others to
  30.    - use your version of this file under the terms of the MPL, indicate your
  31.    - decision by deleting the provisions above and replace them with the notice
  32.    - and other provisions required by the GPL or the LGPL. If you do not delete
  33.    - the provisions above, a recipient may use your version of this file under
  34.    - the terms of any one of the MPL, the GPL or the LGPL.
  35.    -
  36.    - ***** END LICENSE BLOCK ***** -->
  37.  
  38. <?xml-stylesheet type="text/css" href="chrome://global/skin/global.css"?>
  39. <?xml-stylesheet type="text/css" href="chrome://calendar/skin/sun-calendar-event-dialog.css"?>
  40. <?xml-stylesheet type="text/css" href="chrome://calendar/content/datetimepickers/datetimepickers.css"?>
  41.  
  42. <!DOCTYPE dialog [
  43.   <!ENTITY % dtd1 SYSTEM "chrome://calendar/locale/global.dtd" > %dtd1;
  44.   <!ENTITY % dtd2 SYSTEM "chrome://calendar/locale/calendar.dtd" > %dtd2;
  45.   <!ENTITY % dtd3 SYSTEM "chrome://calendar/locale/sun-calendar-event-dialog.dtd" > %dtd3;
  46.   <!ENTITY % calendar-event-dialogDTD SYSTEM "chrome://calendar/locale/calendar-event-dialog.dtd"> %calendar-event-dialogDTD;
  47. ]>
  48.  
  49. <dialog id="sun-calendar-event-dialog-reminder"
  50.         title="&reminder.title.label;"
  51.         onload="onLoad()"
  52.         ondialogaccept="return onAccept();"
  53.         ondialogcancel="return onCancel();"
  54.         persist="screenX screenY"
  55.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  56.  
  57.   <!-- Javascript includes -->
  58.   <script type="application/x-javascript" src="chrome://calendar/content/sun-calendar-event-dialog-reminder.js"/>
  59.   <script type="application/x-javascript" src="chrome://calendar/content/calendar-dialog-utils.js"/>
  60.   <script type="application/x-javascript" src="chrome://calendar/content/calUtils.js"/>
  61.  
  62.   <!-- Listbox with custom reminders -->
  63.   <grid flex="1">
  64.     <rows>
  65.       <row/>
  66.       <row/>
  67.       <row flex="1"/>
  68.       <row/>
  69.     </rows>
  70.     <columns>
  71.       <listbox id="reminder-listbox" seltype="single" onselect="onReminderSelected()" flex="1">
  72.         <listitem/>
  73.       </listbox>
  74.       <column>
  75.         <button id="reminder-new" label="&reminder.new.label;" oncommand="onNewReminder()"/>
  76.         <button id="reminder-delete" label="&reminder.delete.label;" oncommand="onDeleteReminder()"/>
  77.         <spacer/>
  78.         <button label="&reminder.rename.label;" disabled="true"/>
  79.       </column>
  80.     </columns>
  81.   </grid>
  82.  
  83.   <!-- Custom reminder details -->
  84.   <groupbox>
  85.     <caption label="&reminder.reminder.label;"/>
  86.     <radiogroup>
  87.       <grid flex="1">
  88.         <columns>
  89.           <column/>
  90.           <column flex="1"/>
  91.         </columns>
  92.         <rows>
  93.           <row align="top">
  94.             <radio selected="true"/>
  95.             <vbox>
  96.               <hbox>
  97.                 <textbox id="reminder-length" size="1" oninput="updateReminderLength(event)"/>
  98.                 <menulist id="reminder-unit" oncommand="updateReminder()" flex="1">
  99.                   <menupopup>
  100.                     <menuitem label="&alarm.units.minutes;" value="minutes" selected="true"/>
  101.                     <menuitem label="&alarm.units.hours;" value="hours"/>
  102.                     <menuitem label="&alarm.units.days;" value="days"/>
  103.                   </menupopup>
  104.                 </menulist>
  105.                 <menulist id="reminder-relation" oncommand="updateReminder()" flex="1">
  106.                   <menupopup>
  107.                     <menuitem label="&newevent.before.label;" value="START" selected="true"/>
  108.                     <menuitem label="&newevent.after.label;" value="END"/>
  109.                   </menupopup>
  110.                 </menulist>
  111.               </hbox>
  112.               <menulist id="reminder-origin" oncommand="updateReminder()">
  113.                 <menupopup>
  114.                   <menuitem label="&reminder.relation.start.label;" value="1" selected="true"/>
  115.                   <menuitem label="&reminder.relation.end.label;" value="-1"/>
  116.                 </menupopup>
  117.               </menulist>
  118.             </vbox>
  119.           </row>
  120.           <row>
  121.             <radio disabled="true"/>
  122.             <datetimepicker id="reminder-duetime" disabled="true"/>
  123.           </row>
  124.         </rows>
  125.       </grid>
  126.     </radiogroup>
  127.   </groupbox>
  128.  
  129.   <!-- Custom reminder action -->
  130.   <groupbox>
  131.     <caption label="&reminder.action.label;"/>
  132.     <checkbox label="&reminder.action.alert.label;" checked="true" disabled="true"/>
  133.     <checkbox label="&reminder.action.sound.label;" disabled="true"/>
  134.     <checkbox label="&reminder.action.email.label;" disabled="true"/>
  135.   </groupbox>
  136. </dialog>
  137.